home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000145_fdc@columbia.edu_Sun Jun 8 13:09:28 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  74 lines

  1. Article: 14372 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Trouble with dialup connection from K95
  6. Date: 8 Jun 2003 13:09:15 -0400
  7. Organization: Columbia University
  8. Lines: 57
  9. Message-ID: <bbvqjr$s70$1@watsol.cc.columbia.edu>
  10. References: <8ce22d01.0306020820.640a4c8b@posting.google.com> <vdo01ti3qmnv9a@corp.supernews.com> <bbi862$bl7$1@watsol.cc.columbia.edu> <8ce22d01.0306071746.49b85cf0@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1055092156 7730 128.59.39.139 (8 Jun 2003 17:09:16 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 8 Jun 2003 17:09:16 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14372
  16.  
  17. In article <8ce22d01.0306071746.49b85cf0@posting.google.com>,
  18. Dan Skinner <JDanSkinner@JDanSkinner.com> wrote:
  19. : As an old Unix geek I understand and agree.
  20. : I however found an opportunity I couldn't pass up
  21. : A new 12 inch WXP laptop for $679.00 less $250.00 in mail-in-rebates
  22. : ($429.00 net) That's the good news. The bad news is no serial port (3
  23. : usb) no ps2 port (keyboard or mouse) (3 usb), I've never heard of the
  24. : brand (Averatec) or the WINmoden (Smart Link)...
  25. :
  26. The typical "legacy free" no-name unsupportable junk that floods the
  27. market nowadays.  You get what you pay for.
  28.  
  29. : I was able to make a HyperTerm dialup connection
  30. : to a Unix machine I control from the store, so I bought it.
  31. :
  32. If Hyperterminal works, so should Kermit 95, but only if you use its
  33. TAPI interface to the modem:
  34.  
  35.   set port tapi
  36.   set tapi modem-dialing on
  37.  
  38. You almost certainly can't use it as as COM port.
  39.  
  40. : I added my wireless card and installed my navigation software and gps
  41. : antenna (usb.)  K95 works as normal with network connection.  K95 works
  42. : as normal until connect.  Then no display on the screen.
  43. :
  44. And later you said it actually does echo, but five minutes later.
  45.  
  46. : Keyboard out
  47. : works as normal.  I can dial, connect and operate the remote blind.
  48. : This is what I use set car off (answer to Jeff's question) for. To
  49. : manually dial the modem.  If I make a direct connection(com3) with
  50. : HyperTerm and manually dial (atdt1234567) Screen display is normal.
  51. : Nothing similar to set car off required for HyperTerm
  52. I believe there is a difference between how Kermit and Hyperterimal
  53. deal with COM ports.  Kermit lets you access them "directly" via
  54. "set port com1" (com1, com3, ...).  But Hyperterminal does not let you
  55. use serial ports at all.  It only lets you use *modems* -- i.e. devices
  56. that are in the Control Panal -> Phone and Modem Options -> Modems
  57. folder.  Windows lets you add a Com port to this folder as "Communications
  58. cable between two computers".  If you are using Com3 this way from
  59. Hyperterminal, then you should also be able to use it from K95, but only
  60. as a TAPI device, not "set port com3":
  61.  
  62.   [C:\tmp\] K-95> set port tapi ? TAPI device name, one of the following:
  63.    Communications_cable_between_two_computers
  64.    Courier_V.Everything_EXT_PnP_(V90-x2)
  65.   [C:\tmp\] K-95> set port tapi Communications_cable_between_two_computers
  66.   [C:\tmp\] K-95> 
  67.  
  68. The real question is why you want to talk directly to the modem.  Normally
  69. Kermit does that for you with its DIAL command.
  70.  
  71. - Frank
  72.